home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / fish / 726-750 / 750 / fontviewq / dmakefile < prev    next >
Makefile  |  1995-03-18  |  1KB  |  41 lines

  1. # $VER: DMakefile_for_FontViewQ 1.2 (17.9.92)
  2. # (c)1992 by Dieter Temme
  3.  
  4. # compilation with DICE
  5. #COMP= dcc -c -ms -proto
  6. #LINK= dcc
  7. #LLIB=
  8.  
  9. # compilation with Aztec-C (5.2a)
  10. COMP= cc -ms -pp -so -wcn
  11. LINK= ln
  12. LLIB= +l CLIB:amiga.lib +l -lc
  13. # compilation with Aztec-C for SDB
  14. #COMP= cc -ms -pp -wcn -bs -dDEBUG
  15. #LINK= ln -g
  16.  
  17. FontViewQ: RAM:FontViewQ.o
  18.     $(LINK) -o %(left) %(right) $(LLIB)
  19.  
  20. RAM:FontViewQ.o: FontViewQ.c FontViewQ.h
  21.     $(COMP) FontViewQ.c -o %(left)
  22.  
  23. FontViewQ.h: FontViewQ.cd
  24.     CatComp %(right) CFILE %(left)
  25.  
  26. empty.ct: FontViewQ.cd
  27.     CatComp %(right) CTFILE %(left)
  28.  
  29. catalogs/deutsch/FontViewQ.catalog: FontViewQ.cd deutsch.ct
  30.     CatComp %(right) CATALOG %(left)
  31.  
  32. catalogs/français/FontViewQ.catalog: FontViewQ.cd français.ct
  33.     CatComp %(right) CATALOG %(left)
  34.  
  35. all: FontViewQ FontViewQ.h empty.ct \
  36.     catalogs/deutsch/FontViewQ.catalog catalogs/français/FontViewQ.catalog
  37.  
  38. clean:
  39.     delete FontViewQ.o FontViewQ.h empty.ct
  40.     delete catalogs/deutsch/FontViewQ.catalog catalogs/français/FontViewQ.catalog
  41.